***Antipattern***
Count: 5
POST  /devices/{id}/certs/{cid} [Singular last node with POST method.] 
POST  /devices/{id}/pass [Singular last node with POST method.] 
POST  /series/batch_query [Singular last node with POST method.] 
POST  /series/batch_query_raw [Singular last node with POST method.] 
POST  /series/batch_query_raw/lastvalue [Singular last node with POST method.] 

***Pattern***
Count: 15
PUT  /devices [Pluralized last node with PUT|DELETE method.] 
DELETE  /devices/{id} [Pluralized last node with PUT|DELETE method.] 
GET  /devices/{id}/eventsregular methods.
GET  /devices/{id}/propertiesregular methods.
GET  /devicesregular methods.
GET  /devices/{id}regular methods.
DELETE  /devices/{id} [Pluralized last node with PUT|DELETE method.] 
GET  /devices/{id}/properties/{pid}regular methods.
PUT  /devices/{id}/properties [Pluralized last node with PUT|DELETE method.] 
PUT  /devices/{id}/certs [Pluralized last node with PUT|DELETE method.] 
DELETE  /devices/{id}/certs/{cid} [Pluralized last node with PUT|DELETE method.] 
GET  /devices/{id}/certsregular methods.
GET  /devices/{id}/certs/{cid}regular methods.
PUT  /things/{id}/properties [Pluralized last node with PUT|DELETE method.] 
PUT  /things/{id}/properties/{pid}/publish [Pluralized last node with PUT|DELETE method.] 
